home *** CD-ROM | disk | FTP | other *** search
- ;
- ; PowerInstaller Script
- ;
- ; Name: Variable Handling Demo
- ;
- ; Author: Fabio Rotondo
- ;
- ; Descr: Some of the Variable Handling features
- ; in PowerInstaller
- ;
- ; Note the Set command!!
-
- Define Global First "Fabio"
- Define Global Last "Rotondo"
-
- ; Please, note how the FullName is set to "Fabio Rotondo"...
-
- Define Global FullName "$First $Last"
-
-
- ; Here we open a GUI
-
- BeginGUI main
-
- Message "The full name is $FullName"
- Message "The first name is $First"
- Message "The last name is $Last"
-
- ; Note: we are going to change First contents
-
- Set First "Changed"
-
- Message "Now First value is $First"
-
- EndGUI
-